home *** CD-ROM | disk | FTP | other *** search
/ Kyoko 8203 / Kyoko 8203.iso / mac / comic.dxr / 00027_è¨ëOå„.ls < prev    next >
Encoding:
Text File  |  2003-02-28  |  315 b   |  27 lines

  1. global page, photonumber
  2.  
  3. on mouseUp me
  4.   cursor(0)
  5.   mynumber = me.spriteNum
  6.   case mynumber of
  7.     28:
  8.       page = page - 1
  9.     29:
  10.       page = page + 1
  11.   end case
  12.   go("SMALL")
  13.   updateStage()
  14. end
  15.  
  16. on mouseEnter me
  17.   cursor([1, 2])
  18. end
  19.  
  20. on mouseLeave me
  21.   cursor(0)
  22. end
  23.  
  24. on mouseWithin me
  25.   cursor([1, 2])
  26. end
  27.